home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Graphics / MagnifiCAD / ARexx / Get2.rexx < prev    next >
OS/2 REXX Batch file  |  1996-11-19  |  646b  |  47 lines

  1. /* 
  2. **  Get2.rexx 
  3. **
  4. **  Description: A test of the 'Get' command,
  5. **               showing some of the parameters.
  6. **
  7. **  Written by:  Anders Granli
  8. ** 
  9. **  Date:        11.10.96                
  10. */
  11.  
  12. OPTIONS RESULTS
  13.  
  14. address 'MAGNIFICAD'
  15.  
  16. SAY
  17.  
  18. GETATTR GRIDTYPE
  19. gridtype = RESULT
  20. SAY "Gridtype: " gridtype
  21.  
  22. GETATTR HATCH
  23. hatch = RESULT
  24. SAY "Hatch:" hatch
  25.  
  26. GETATTR LEVEL
  27. level = RESULT
  28. SAY "Level: " level
  29.  
  30. GETATTR COLOR
  31. color = RESULT
  32. SAY "Color:" color
  33.  
  34. GETATTR COLORDEPTH
  35. colordepth = RESULT
  36. SAY "Colordepth:" colordepth
  37.  
  38. GETATTR COPY
  39. copy = RESULT
  40. SAY "Copy:" copy
  41.  
  42. GETATTR PRINTBORDER
  43. printborder = RESULT
  44. SAY "PrintBorder:" printborder
  45.  
  46. SAY
  47.